.bread-crumb{
    font-size: 24px;
    color: white;
}

  .klicker-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .klicker-tagline {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .klicker-main-title {
            font-size: 48px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 50px;
            line-height: 1.2;
        }

        .klicker-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .klicker-content-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .klicker-content-paragraph {
            font-size: 16px;
            line-height: 1.7;
            color: #555;
            text-align: justify;
        }

        /* Tablet styles */
        @media (max-width: 768px) {
            .klicker-container {
                padding: 40px 16px;
            }

            .klicker-main-title {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .klicker-content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .klicker-tagline {
                font-size: 14px;
            }

            .klicker-content-paragraph {
                font-size: 15px;
                text-align: left;
            }
        }

        /* Mobile styles */
        @media (max-width: 480px) {
            .klicker-container {
                padding: 30px 16px;
            }

            .klicker-main-title {
                font-size: 28px;
                margin-bottom: 30px;
                line-height: 1.3;
            }

            .klicker-content-grid {
                gap: 25px;
            }

            .klicker-content-column {
                gap: 20px;
            }

            .klicker-content-paragraph {
                font-size: 14px;
                line-height: 1.6;
            }

            .klicker-tagline {
                font-size: 13px;
                margin-bottom: 15px;
            }
        }

        /* Large desktop styles */
        @media (min-width: 1400px) {
            .klicker-container {
                max-width: 1400px;
                padding: 80px 40px;
            }

            .klicker-main-title {
                font-size: 56px;
            }

            .klicker-content-grid {
                gap: 80px;
            }

            .klicker-content-paragraph {
                font-size: 17px;
            }
        }

        

            /* Header Styles */
  .header-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 80px;
    background: transparent;
    padding: 15px 0;
    z-index: 1100; /* higher than sidebar & overlay */
}


        /* Mobile First - Below 768px */
        .header-content {
            background: rgba(0, 0, 0, 0.8);
            /* border-radius: 0px;
            padding: 15px;
            margin: 0 15px; */
            display: flex;
            align-items: center;
            margin-top: -14px;
        }

        .social-icons {
            display: none;
        }

        .main-logo {
            max-height: 45px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        /* Keep items in same row on mobile */
        .menu-section {
            display: flex;
            align-items: center;
        }

        .social-section {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-left: 20px;
           
        }

        .logo-section {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        /* Desktop - Above 768px */
        @media (min-width: 769px) {
            .header-content {
                background: transparent;
                border-radius: 0;
                padding: 0;
                margin: 0;
            }

            .social-icons {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 12px;
            }

            .social-icons a {
                color: white;
                font-size: 16px;
                text-decoration: none;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 35px;
                height: 35px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
            }

            .social-icons a:hover {
                background: rgba(255, 255, 255, 0.2);
                color: #912727;
                transform: translateY(-2px);
            }

            .main-logo {
                max-height: 40px;
                filter: none;
            }

            .logo-section {
                justify-content: flex-start;
                margin-left: 66px;
            }
        }

        /* Menu Toggle Button */
        .menu-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            position: relative;
    z-index: 1200; /* always on top */
        }

        .hamburger {
            width: 25px;
            height: 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .menu-toggle.active .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .menu-toggle.active .hamburger span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .menu-toggle.hidden {
            opacity: 0;
            pointer-events: none;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Sidebar */
        .sidebar {
            position: fixed;
            top: 0;
            left: -350px;
            width: 350px;
            height: 100vh;
            background-image: url("img/logo/bkg_menu (1).png");
            z-index: 1000;
            transition: left 0.3s ease;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        }

        .sidebar.active {
            left: 0;
        }

        .sidebar-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo img {
            max-height: 40px;
            width: auto;
        }

        .close-btn {
            background: none;
            border: none;
            color: rgb(32, 32, 32);
            font-size: 30px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Sidebar Menu */
        .sidebar-menu {
            padding: 20px 0;
        }

        .menu-item {
            width: 100%;
            padding: 15px 30px;
            background: none;
            border: none;
            text-align: left;
            color: rgb(32, 31, 31);
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            display: block;
        }

        .menu-item a {
            color: inherit;
            text-decoration: none;
            display: block;
            width: 100%;
        }

        .menu-item:hover {
            background: rgba(255, 255, 255, 0.1);
            padding-left: 40px;
        }

        .menu-item.active {
            background: rgba(255, 255, 255, 0.2);
            border-right: 4px solid white;
        }

        .menu-item.active::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
        }

        /* Responsive adjustments */
        @media (max-width: 576px) {
            .sidebar {
                width: 100%;
                left: -100%;
            }
            
            .main-logo {
                max-height: 35px;
            }
            
            .header-content {
                /* margin: 0 10px;
                padding: 10px 15px; */
            }

            .hamburger {
                width: 22px;
                height: 18px;
            }

            .hamburger span {
                height: 2px;
            }
        }

        @media (max-width: 480px) {
            .main-logo {
                max-height: 30px;
            }
            
            .header-content {
                padding: 4px 12px;
            }

            .hamburger {
                width: 20px;
                height: 16px;
            }
        }
